home *** CD-ROM | disk | FTP | other *** search
- /*
- * Proforma abstract class
- *
- * ????? ???? ?????.
- *
- * Copyright © John Wainwright 1988
- *
- * SuperClasses :
- *
- * Instance Vars :
- *
- * Class Vars :
- *
- * Methods :
- *
- * Class Methods :
- *
- */
-
- #include "oic.h"
- #include "generics.h"
-
- class Proforma; /* the Proforma class */
-
- struct Proforma_i /* Proforma instance structure */
- {
- char *x;
- };
- typedef struct Proforma_i Proforma_i;
-
- /* -------------------- Proforma Instance methods ------------------- */
-
- static object
- _new(self, p, pa)
- object self;
- register Proforma_i *p;
- register struct {} *pa;
- {
- }
-
- /* ------------------- Init the Proforma class ---------------------- */
-
- InitProforma()
- {
- Proforma = NewClass(sizeof(Proforma_i), 0, "Proforma", END);
- AddMethods(Proforma,
- newGeneric, _new,
- END);
- }
-
-